home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ IE URLTemplates.xpl < prev    next >
Text File  |  1999-05-22  |  1KB  |  44 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="1"
  3. "COUNT"="5"
  4. "UIPATH"="Internet\Internet Explorer\System"
  5. "NAME"="URL Templates"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Template 1"
  8. "TEXT 2"="Template 2"
  9. "TEXT 3"="Template 3"
  10. "TEXT 4"="Template 4"
  11. "TEXT 5"="Template 5"
  12. "DESCRIPTION 1"="Entering a simple word in the "Address" field of Internet Explorer causes it to try resolving the name using one of these templates."
  13. "DESCRIPTION 2"="For example, if you enter "AUTO", Internet Explorer first tries to find the site "www.AUTO.com", then "www.AUTO.edu" and so on."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  17. "COMMENT 2"="Version 1.2"
  18.  
  19.  
  20. sPath="HKLM\Software\Microsoft\Internet Explorer\Main\UrlTemplate\"
  21. Sub Plugin_Initialize 
  22.  if RegPathExists(sPath) then
  23.   for l=1 to 5 
  24.    s=RegReadValue(sPath & l)
  25.    Call SetUIElement(l,s)
  26.   Next
  27.  else
  28.   Disable
  29.  end if
  30. End Sub
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  for l=1 to 5
  37.   s=GetUIElement(l)
  38.   Call RegWriteValue(sPath & l,s,1)
  39.  next
  40. End Sub
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.